home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / DESK / CORE / Desk / h_doc / Sound < prev    next >
Text File  |  1996-05-21  |  1KB  |  38 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Sound.h
  12.     Author:  Copyright © 1993 Jason Williams
  13.     Version: 0.01 (28 Mar 1993)
  14.     Purpose: Sound system interfaces
  15. */
  16.  
  17. #ifndef __Desk_Sound_h
  18. #define __Desk_Sound_h
  19.  
  20. #ifdef __cplusplus
  21.     extern "C" {
  22. #endif
  23.  
  24.  
  25.  
  26. extern void Desk_Sound_SysBeep(void);
  27. /*
  28.  *  Simply writes a character 7 (system beep) to the VDU stream, in order
  29.  *  to sound a system beep. It sorta goes 'beep', really.
  30.  */
  31.  
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35.  
  36.  
  37. #endif
  38.